home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 355 b | 27 lines | [TEXT/CWIE] |
- // GrafPortContext.h
-
- #ifndef GrafPortContext_h
- #define GrafPortContext_h
-
- #ifndef Context_h
- #include "Context.h"
- #endif
-
- class GrafPortContext: public Context
- {
- private:
- GrafPtr port;
-
- protected:
- virtual void Enter();
- virtual void Leave();
- virtual void Check();
-
- public:
- GrafPortContext( GrafPtr p )
- : port( p )
- {}
- };
-
- #endif
-